Hello, I'm jiyoung choi.
authorJihoon Kim <imfine98@gmail.com>
Thu, 7 Feb 2013 07:26:45 +0000 (07:26 +0000)
committerJihoon Kim <imfine98@gmail.com>
Thu, 7 Feb 2013 07:26:45 +0000 (07:26 +0000)
It's the first time sending patch. haha :)

I found the simple typo.
1. At the description of list : algarism (x) ----> algorithm (o)
2. ~trunk/elementary/src/examples/ fileselector_entry_example.c
   line 8 : gcc -g file selector_entry_example.c -o file selector_entry_example 'pkg-config --cflags --libs elementary' (x)
   *** wrong word spacing (file selector) ***
   ----> gcc -g fileselector_entry_example.c -o fileselector_entry_example 'pkg-config --cflags --libs elementary' (o)

I fixed these 2 typo.
So I want you to check this patch.

SVN revision: 83707

src/examples/fileselector_entry_example.c
src/lib/elm_clock.h

index eafe80b..4f03911 100644 (file)
@@ -5,7 +5,7 @@
  * See stdout/stderr for output. Compile with:
  *
  * @verbatim
- * gcc -g file selector_entry_example.c -o file selector_entry_example `pkg-config --cflags --libs elementary`
+ * gcc -g fileselector_entry_example.c -o fileselector_entry_example `pkg-config --cflags --libs elementary`
  * @endverbatim
  */
 
index cbbb18b..4beda79 100644 (file)
@@ -244,12 +244,12 @@ enum
 typedef enum
 {
    ELM_CLOCK_EDIT_DEFAULT = 0, /**< Default value. Means that all digits are editable, when in edition mode. */
-   ELM_CLOCK_EDIT_HOUR_DECIMAL = 1 << 0, /**< Decimal algarism of hours value should be editable */
-   ELM_CLOCK_EDIT_HOUR_UNIT = 1 << 1, /**< Unit algarism of hours value should be editable */
-   ELM_CLOCK_EDIT_MIN_DECIMAL = 1 << 2, /**< Decimal algarism of minutes value should be editable */
-   ELM_CLOCK_EDIT_MIN_UNIT = 1 << 3, /**< Unit algarism of minutes value should be editable */
-   ELM_CLOCK_EDIT_SEC_DECIMAL = 1 << 4, /**< Decimal algarism of seconds value should be editable */
-   ELM_CLOCK_EDIT_SEC_UNIT = 1 << 5, /**< Unit algarism of seconds value should be editable */
+   ELM_CLOCK_EDIT_HOUR_DECIMAL = 1 << 0, /**< Decimal algorithm of hours value should be editable */
+   ELM_CLOCK_EDIT_HOUR_UNIT = 1 << 1, /**< Unit algorithm of hours value should be editable */
+   ELM_CLOCK_EDIT_MIN_DECIMAL = 1 << 2, /**< Decimal algorithm of minutes value should be editable */
+   ELM_CLOCK_EDIT_MIN_UNIT = 1 << 3, /**< Unit algorithm of minutes value should be editable */
+   ELM_CLOCK_EDIT_SEC_DECIMAL = 1 << 4, /**< Decimal algorithm of seconds value should be editable */
+   ELM_CLOCK_EDIT_SEC_UNIT = 1 << 5, /**< Unit algorithm of seconds value should be editable */
    ELM_CLOCK_EDIT_ALL = (1 << 6) - 1 /**< All digits should be editable */
 } Elm_Clock_Edit_Mode;