]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - write.h
Fix some typos.
[paraslash.git] / write.h
diff --git a/write.h b/write.h
index be5f7454532c77899af4957668d0c809bff96668..2eb4e3db8315ba1baedabbbfcefff369a6f3f058 100644 (file)
--- a/write.h
+++ b/write.h
@@ -10,7 +10,7 @@
 enum writer_enum {WRITER_ENUM};
 
 /**
- * decbribes one running instance of a writer
+ * Describes one running instance of a writer.
  */
 struct writer_node {
        /** points to the writer structure associated with this node */
@@ -55,7 +55,7 @@ struct writer {
         *
         * This function should perform any work necessary to write the incoming
         * stream. If To this aim, it may allocate its private data structure and store
-        * a pointer to that structure via the given writer_node paramenter.
+        * a pointer to that structure via the given writer_node parameter.
         */
        int (*open)(struct writer_node *);
        /**
@@ -70,7 +70,7 @@ struct writer {
        int (*pre_select)(struct sched *s, struct writer_node *wn);
        /**
         * Called from the post_select function of the wng task. It must keep
-        * track of the the number of bytes consumed from the wng's buffer via
+        * track of the number of bytes consumed from the wng's buffer via
         * the wn->written variable (which may be modified by the wng handling
         * functions). This function must return positive on success and
         * negative on errors.