mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Please check this sort of thing before assuming it's wrong: this extension
does not use resources. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@54614 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3d45ab8e59
commit
bfe64bce4f
1 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
<!-- $Revision: 1.12 $ -->
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<reference id="ref.aspell">
|
||||
<title>Aspell functions</title>
|
||||
<titleabbrev>Aspell</titleabbrev>
|
||||
|
@ -33,7 +33,7 @@
|
|||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>resource <function>aspell_new</function></funcdef>
|
||||
<funcdef>int <function>aspell_new</function></funcdef>
|
||||
<paramdef>string <parameter>master</parameter></paramdef>
|
||||
<paramdef>string <parameter>personal</parameter></paramdef>
|
||||
</funcprototype>
|
||||
|
@ -64,7 +64,7 @@ $aspell_link = aspell_new("english");
|
|||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>aspell_check</function></funcdef>
|
||||
<paramdef>resource <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>int <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>string <parameter>word</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -101,7 +101,7 @@ if (aspell_check($aspell_link, "testt")) {
|
|||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>aspell_check_raw</function></funcdef>
|
||||
<paramdef>resource <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>int <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>string <parameter>word</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
@ -137,7 +137,7 @@ if (aspell_check_raw($aspell_link, "test")) {
|
|||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>array <function>aspell_suggest</function></funcdef>
|
||||
<paramdef>resource <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>int <parameter>dictionary_link</parameter></paramdef>
|
||||
<paramdef>string <parameter>word</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
|
|
Loading…
Reference in a new issue