aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_tests.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-12-08 01:57:17 +1000
committerGravatar axel <axel@liljencrantz.se>2005-12-08 01:57:17 +1000
commit0c877183b92f7d256d9e82ccf32715f939e4ad4e (patch)
treed53fd2239250d72e5bce22b7373893f2c8dcf444 /fish_tests.c
parenta46be4cadb8de762b658e062eb194b202903a75d (diff)
Spelling
darcs-hash:20051207155717-ac50b-6146b02bd8aff0fd27816acd5e31b38093d8575d.gz
Diffstat (limited to 'fish_tests.c')
-rw-r--r--fish_tests.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fish_tests.c b/fish_tests.c
index fa265851..280ce4ff 100644
--- a/fish_tests.c
+++ b/fish_tests.c
@@ -518,7 +518,7 @@ static void test_parser()
}
/**
- Perform parameter expantion and test if the output equals the zero-terminated parameter list supplied.
+ Perform parameter expansion and test if the output equals the zero-terminated parameter list supplied.
\param in the string to expand
\param flags the flags to send to expand_string
@@ -561,11 +561,11 @@ static int expand_test( const wchar_t *in, int flags, ... )
}
/**
- Test globbing and other parameter expantion
+ Test globbing and other parameter expansion
*/
static void test_expand()
{
- say( L"Testing parameter expantion" );
+ say( L"Testing parameter expansion" );
if( !expand_test( L"foo", 0, L"foo", 0 ))
{
@@ -574,12 +574,12 @@ static void test_expand()
if( !expand_test( L"a{b,c,d}e", 0, L"abe", L"ace", L"ade", 0 ) )
{
- err( L"Bracket expantion is broken" );
+ err( L"Bracket expansion is broken" );
}
if( !expand_test( L"a*", EXPAND_SKIP_WILDCARDS, L"a*", 0 ) )
{
- err( L"Cannot skip wildcard expantion" );
+ err( L"Cannot skip wildcard expansion" );
}
}