Skip to content

Commit

Permalink
Fix index of visibility (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
RoFlection Bot committed Aug 29, 2022
1 parent a4c66a9 commit ebc4d4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

### Checklist
<!-- remove non-applicable items -->
- [ ] Remember to put the new functions in the relevant `init.lua` files
- [ ] Tests are implemented and documents the behavior of the code
- [ ] The polyfill translates behavior from JavaScript to Lua (as described [MDN](https://developer.mozilla.org/))
- [ ] Update changelog <!-- describe what's added or fixed in the `unreleased` section -->
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased

* Fix `indexOf` to be accessible from `String`
* Refactor structure to a rotriever workspace

## 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion modules/string/src/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
]]
--!strict
return {
charCodeAt = require(script.charCodeAt),
endsWith = require(script.endsWith),
findOr = require(script.findOr),
includes = require(script.includes),
indexOf = require(script.indexOf),
lastIndexOf = require(script.lastIndexOf),
slice = require(script.slice),
split = require(script.split),
Expand Down

0 comments on commit ebc4d4e

Please sign in to comment.