Skip to content
This repository was archived by the owner on Aug 18, 2020. It is now read-only.

Commit 320871a

Browse files
MelanXJ0B10
authored andcommitted
Fixed typos
1 parent b2b5d67 commit 320871a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
/**
77
* Event that is triggered by tipeeestream if a user follows your channel
88
*/
9-
public class TipeeestramFollowEvent extends FollowEvent<TipeeestreamFollow> implements TipeeestreamEvent {
10-
public TipeeestramFollowEvent(TipeeestreamFollow info) {
9+
public class TipeeestreamFollowEvent extends FollowEvent<TipeeestreamFollow> implements TipeeestreamEvent {
10+
public TipeeestreamFollowEvent(TipeeestreamFollow info) {
1111
super(info);
1212
}
1313
}

src/main/java/org/codeoverflow/chatoverflow/api/io/input/event/TipeeestreamEventInput.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package org.codeoverflow.chatoverflow.api.io.input.event;
22

3-
import org.codeoverflow.chatoverflow.api.io.event.stream.tipeeestream.TipeeestramFollowEvent;
3+
import org.codeoverflow.chatoverflow.api.io.event.stream.tipeeestream.TipeeestreamFollowEvent;
44
import org.codeoverflow.chatoverflow.api.io.event.stream.tipeeestream.TipeeestreamDonationEvent;
55
import org.codeoverflow.chatoverflow.api.io.event.stream.tipeeestream.TipeeestreamEvent;
66
import org.codeoverflow.chatoverflow.api.io.event.stream.tipeeestream.TipeeestreamSubscriptionEvent;
@@ -19,12 +19,12 @@ default void registerSubscriptionEventHandler(Consumer<TipeeestreamSubscriptionE
1919
}
2020

2121
/**
22-
* Register an event handler that listens to all {@link TipeeestramFollowEvent}
22+
* Register an event handler that listens to all {@link TipeeestreamFollowEvent}
2323
*
2424
* @param eventHandler consumer that receives the Events
2525
*/
26-
default void registerFollowEventHandler(Consumer<TipeeestramFollowEvent> eventHandler) {
27-
registerEventHandler(eventHandler, TipeeestramFollowEvent.class);
26+
default void registerFollowEventHandler(Consumer<TipeeestreamFollowEvent> eventHandler) {
27+
registerEventHandler(eventHandler, TipeeestreamFollowEvent.class);
2828
}
2929

3030
/**

0 commit comments

Comments
 (0)