From 274f9cac96eeafce77d61065e7a3fba9680469c6 Mon Sep 17 00:00:00 2001
From: Alessandro Ghedini <alessandro@ghedini.me>
Date: Sat, 12 Aug 2017 13:33:10 +0100
Subject: [PATCH] docs: fix typo stuct -> struct

---
 docs/libcurl/opts/CURLOPT_SEEKDATA.3     | 2 +-
 docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/libcurl/opts/CURLOPT_SEEKDATA.3 b/docs/libcurl/opts/CURLOPT_SEEKDATA.3
index 9fea9b1b70..6ffa7d12a9 100644
--- a/docs/libcurl/opts/CURLOPT_SEEKDATA.3
+++ b/docs/libcurl/opts/CURLOPT_SEEKDATA.3
@@ -39,7 +39,7 @@ HTTP, FTP, SFTP
 .nf
 static int seek_cb(void *userp, curl_off_t offset, int origin)
 {
-  struct data *d = (stuct data *)userp;
+  struct data *d = (struct data *)userp;
   lseek(our_fd, offset, origin);
   return CURL_SEEKFUNC_OK;
 }
diff --git a/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3 b/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3
index 57141ecf3a..95780c8720 100644
--- a/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3
+++ b/docs/libcurl/opts/CURLOPT_SEEKFUNCTION.3
@@ -70,7 +70,7 @@ HTTP, FTP, SFTP
 .nf
 static int seek_cb(void *userp, curl_off_t offset, int origin)
 {
-  struct data *d = (stuct data *)userp;
+  struct data *d = (struct data *)userp;
   lseek(our_fd, offset, origin);
   return CURL_SEEKFUNC_OK;
 }
-- 
GitLab