Skip to content

Fix error: value to is not a member of Boolean - #47

Open
kjmrknsn wants to merge 1 commit into
scala-exercises:mainfrom
kjmrknsn:patch-1
Open

kjmrknsn wants to merge 1 commit into
scala-exercises:mainfrom
kjmrknsn:patch-1

Conversation

@kjmrknsn

@kjmrknsn kjmrknsn commented Jan 4, 2019

Copy link
Copy Markdown

Change 1.to(10) == 1 to 10 to 1.to(10) == (1 to 10) because execution of the original code throws the following error:

<console>:24: error: value to is not a member of Boolean
       1.to(10) == 1 to 10

Change `1.to(10) == 1 to 10` to `1.to(10) == (1 to 10)` because execution of the original code throws the following error:

```
<console>:24: error: value to is not a member of Boolean
       1.to(10) == 1 to 10
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants