You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Henry Saputra (JIRA)" <ji...@apache.org> on 2010/02/11 07:49:28 UTC

[jira] Created: (WINK-253) Typo in documentation for Wink 1.0 from Apache incubator website (it has ScopeType.SINGELTON instead of ScopeType.SINGLETON)

Typo in documentation for Wink 1.0 from Apache incubator website (it has ScopeType.SINGELTON instead of ScopeType.SINGLETON)
----------------------------------------------------------------------------------------------------------------------------

                 Key: WINK-253
                 URL: https://issues.apache.org/jira/browse/WINK-253
             Project: Wink
          Issue Type: Bug
          Components: Documentation
    Affects Versions: 1.0
            Reporter: Henry Saputra
            Priority: Minor


There is typo in the documentation for Wink 1.0 from the Apache incubator website:
http://incubator.apache.org/wink/1.0/html/7%20Apache%20Wink%20Representations.html

In the Singleton example 1 its written:

@Scope(ScopeType.SINGELTON)
@Provider
public class MyProvider implements MessageBodyReader<String>{
    ...
}


should be:

@Scope(ScopeType.SINGLETON)
@Provider
public class MyProvider implements MessageBodyReader<String>{
    ...
}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (WINK-253) Typo in documentation for Wink 1.0 from Apache incubator website (it has ScopeType.SINGELTON instead of ScopeType.SINGLETON)

Posted by "Bryant Luk (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/WINK-253?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bryant Luk resolved WINK-253.
-----------------------------

       Resolution: Fixed
    Fix Version/s: 1.1
         Assignee: Bryant Luk

Whoops, thanks for catching that.

I made a change to the development wiki:
http://cwiki.apache.org/confluence/display/WINK/7+Apache+Wink+Representations
to fix this issue.  It's where we generate the documentation for every release so should be rolled up in the next one.

> Typo in documentation for Wink 1.0 from Apache incubator website (it has ScopeType.SINGELTON instead of ScopeType.SINGLETON)
> ----------------------------------------------------------------------------------------------------------------------------
>
>                 Key: WINK-253
>                 URL: https://issues.apache.org/jira/browse/WINK-253
>             Project: Wink
>          Issue Type: Bug
>          Components: Documentation
>    Affects Versions: 1.0
>            Reporter: Henry Saputra
>            Assignee: Bryant Luk
>            Priority: Minor
>             Fix For: 1.1
>
>
> There is typo in the documentation for Wink 1.0 from the Apache incubator website:
> http://incubator.apache.org/wink/1.0/html/7%20Apache%20Wink%20Representations.html
> In the Singleton example 1 its written:
> @Scope(ScopeType.SINGELTON)
> @Provider
> public class MyProvider implements MessageBodyReader<String>{
>     ...
> }
> should be:
> @Scope(ScopeType.SINGLETON)
> @Provider
> public class MyProvider implements MessageBodyReader<String>{
>     ...
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.