diff --git a/ballerina/http_annotation.bal b/ballerina/http_annotation.bal index d22a63c7f2..d2930b898d 100644 --- a/ballerina/http_annotation.bal +++ b/ballerina/http_annotation.bal @@ -113,13 +113,13 @@ public type HttpHeader record {| |}; # The annotation which is used to define the Header resource signature parameter. -public const annotation HttpHeader Header on parameter; +public annotation HttpHeader Header on parameter; # Defines the query resource signature parameter. public type HttpQuery record {||}; # The annotation which is used to define the query resource signature parameter. -public const annotation HttpQuery Query on parameter; +public annotation HttpQuery Query on parameter; # Defines the HTTP response cache configuration. By default the `no-cache` directive is setted to the `cache-control` # header. In addition to that `etag` and `last-modified` headers are also added for cache validation. diff --git a/changelog.md b/changelog.md index 5134e6ddba..aa0e917d7b 100644 --- a/changelog.md +++ b/changelog.md @@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - [Add support for Server-Sent Events](https://github.com/ballerina-platform/ballerina-library/issues/6687) - [Introduce default status code response record](https://github.com/ballerina-platform/ballerina-library/issues/6491) - [Add connection eviction feature to handle connections that receive GO_AWAY from the client](https://github.com/ballerina-platform/ballerina-library/issues/6734) -- [Enhanced the configurability of Ballerina access logging by introducing multiple configuration options.](https://github.com/ballerina-platform/ballerina-library/issues/6111) +- [Enhance the configurability of Ballerina access logging by introducing multiple configuration options.](https://github.com/ballerina-platform/ballerina-library/issues/6111) - [Introduce HTTP service contract object type](https://github.com/ballerina-platform/ballerina-library/issues/6378) ### Fixed