c.snip: trivial spacing fixes

This commit is contained in:
ujihisa 2012-09-22 23:52:30 -07:00
parent 52d86e726c
commit c0503b0f00
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ abbr struct {}
# Typedef struct
snippet struct_typedef
typedef struct ${1:name}{
typedef struct ${1:name} {
${0:/* data */}
};
@ -112,7 +112,7 @@ abbr include-guard
# Tertiary conditional
snippet conditional
(${1:/* condition */})? ${2:a} : ${3:b}
(${1:/* condition */}) ? ${2:a} : ${3:b}
# Typedef
snippet typedef