Skip to content

Commit

Permalink
Http => HTTP
Browse files Browse the repository at this point in the history
  • Loading branch information
khajavi committed May 7, 2024
1 parent 32837d7 commit 3abd8c4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/examples/websocket.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: "WebSocket Example"
sidebar_label: "WebSocket Server & Client"
---

This example shows how to create a WebSocket server using ZIO Http and how to write a client to connect to it.
This example shows how to create a WebSocket server using ZIO HTTP and how to write a client to connect to it.

## Server

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
id: index
title: "Introduction to ZIO Http"
sidebar_label: "ZIO Http"
title: "Introduction to ZIO HTTP"
sidebar_label: "ZIO HTTP"
---

ZIO HTTP is a scala library for building http apps. It is powered by ZIO and [Netty](https://netty.io/) and aims at being the defacto solution for writing, highly scalable and performant web applications using idiomatic Scala.
Expand Down Expand Up @@ -37,7 +37,7 @@ libraryDependencies += "dev.zio" %% "zio-http" % "@VERSION@"

**NOTES ON VERSIONING:**

- Older library versions `1.x` or `2.x` with organization `io.d11` of ZIO Http are derived from Dream11, the organization that donated ZIO Http to the ZIO organization in 2022.
- Older library versions `1.x` or `2.x` with organization `io.d11` of ZIO HTTP are derived from Dream11, the organization that donated ZIO HTTP to the ZIO organization in 2022.
- Newer library versions, starting in 2023 and resulting from the [ZIO organization](https://dev.zio) started with `0.0.x`, reaching `1.0.0` release candidates in April of 2023

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ libraryDependencies += "dev.zio" %% "zio-http" % "@VERSION@"

## Using g8 Template

To set up a ZIO Http project using the provided g8 template we can run the following command on our terminal:
To set up a ZIO HTTP project using the provided g8 template we can run the following command on our terminal:

```shell
sbt new zio/zio-http.g8
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/aop/handler_aspect.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ val route =
If we deploy this route and send a GET request to the `/internal-error` route with the `Accept: text/html` header, we will get the following response body:

```html
<!DOCTYPE html><html><head><title>ZIO Http - Forbidden</title><style>
<!DOCTYPE html><html><head><title>ZIO HTTP - Forbidden</title><style>
body {
font-family: monospace;
font-size: 16px;
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/handler.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ Routes(
html(
// Support for child nodes
head(
title("ZIO Http"),
title("ZIO HTTP"),
),
body(
div(
Expand Down Expand Up @@ -340,7 +340,7 @@ HTTP/1.1 200 OK
content-type: text/html
content-length: 352
<!DOCTYPE html><html><head><title>ZIO Http - Hello world!</title><style>
<!DOCTYPE html><html><head><title>ZIO HTTP - Hello world!</title><style>
body {
font-family: monospace;
font-size: 16px;
Expand Down

0 comments on commit 3abd8c4

Please sign in to comment.