Index: trunk/phase3/includes/Title.php |
— | — | @@ -1951,7 +1951,7 @@ |
1952 | 1952 | * Please make use of this instead of comparing to getNamespace() |
1953 | 1953 | * This function is much more resistant to changes we may make |
1954 | 1954 | * to namespaces than code that makes direct comparisons. |
1955 | | - * @param $ns The namespace |
| 1955 | + * @param $ns int The namespace |
1956 | 1956 | * @return bool |
1957 | 1957 | * @since 1.19 |
1958 | 1958 | */ |
Index: trunk/phase3/includes/Namespace.php |
— | — | @@ -155,8 +155,8 @@ |
156 | 156 | * of this function rather than directly doing comparison will make |
157 | 157 | * sure that code will not potentially break. |
158 | 158 | * |
159 | | - * @param $ns1 The first namespace index |
160 | | - * @param $ns2 The second namespae index |
| 159 | + * @param $ns1 int The first namespace index |
| 160 | + * @param $ns2 int The second namespae index |
161 | 161 | * |
162 | 162 | * @return bool |
163 | 163 | * @since 1.19 |
— | — | @@ -170,8 +170,8 @@ |
171 | 171 | * eg: NS_USER and NS_USER wil return true, as well |
172 | 172 | * NS_USER and NS_USER_TALK will return true. |
173 | 173 | * |
174 | | - * @param $ns1 The first namespace index |
175 | | - * @param $ns2 The second namespae index |
| 174 | + * @param $ns1 int The first namespace index |
| 175 | + * @param $ns2 int The second namespae index |
176 | 176 | * |
177 | 177 | * @return bool |
178 | 178 | * @since 1.19 |