summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/hunspell-test.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hunspell-test.cxx b/src/hunspell-test.cxx
index a66b434..67393d5 100644
--- a/src/hunspell-test.cxx
+++ b/src/hunspell-test.cxx
@@ -17,7 +17,7 @@ int main(int argc, char *argv[])
dic.close();
std::ofstream aff ("hunspell-test.aff");
aff << "SET UTF-8\nTRY loredWH\nMAXDIFF 1";
- aff.close();
+ aff.close();
Hunspell h("hunspell-test.aff", "hunspell-test.dic");
if (h.spell("Hello") == 0)
@@ -28,10 +28,10 @@ int main(int argc, char *argv[])
{
std::cerr << "Error: hunspell marked wrong word as correct" << std::endl;
}
-
+
char ** result;
int n = h.suggest(&result, "ell");
for (int i = 0; i < n; i++) std::cout << result[i];
-
+
return 0;
}