]> git.ozlabs.org Git - ccan/blobdiff - ccan/tal/stack/_info
Fix typos detected by github.com/client9/misspell
[ccan] / ccan / tal / stack / _info
index 803a0058dc1358534731da56eae68bc82ffac240..b3858159808ecaf5ee04b9fe38b39293768fafc1 100644 (file)
@@ -3,7 +3,7 @@
 #include <string.h>
 
 /**
- * tal/stack - stack of tal contextes (inspired by talloc_stack)
+ * tal/stack - stack of tal contexts (inspired by talloc_stack)
  *
  * Implement a stack of tal contexts. A new (empty) context is pushed on top
  * of the stack using tal_newframe and it is popped/freed using tal_free().
@@ -38,7 +38,7 @@
  *             return retval;
  *     }
  *
- *     int main(int argc, char *argv[])
+ *     int main(void)
  *     {
  *             tal_t *tmp_ctx = tal_newframe();
  *             int *val = do_work();